home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / convert.sql < prev    next >
Text File  |  2000-05-12  |  853b  |  27 lines

  1. /* RCSVER $Id: convert.sql,v 1.1 1999-02-25 15:05:04-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        convert.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the convert table.
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE convert
  12. (
  13.     farebox_glid    NUMBER(38),
  14.     filename    VARCHAR2(80),
  15.     conversion_num    NUMBER(38),
  16.     beg_det_seq    NUMBER(38),
  17.     end_det_seq    NUMBER(38),
  18.     conversion_date    DATE DEFAULT SYSDATE,
  19.     beg_date    DATE,
  20.     end_date    DATE,
  21.     probe_id    NUMBER(38),
  22.     probe_location    NUMBER(38),
  23.     conversion_status    NUMBER(38)
  24.         CONSTRAINT ref3_convert REFERENCES status(status_id),
  25.     CONSTRAINT pk_convert PRIMARY KEY (conversion_num)
  26. );
  27.